Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632800 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/87 - Body Mass Index Calculator

index.html cody/swapnilsparsh/30DaysOfJavaScript/87 - Body Mass Index Calculator/index.html
299 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<title>BMI</title>
script.js cody/swapnilsparsh/30DaysOfJavaScript/87 - Body Mass Index Calculator/script.js
171 Views
0 Comments
function fun()
{
var cm = document.getElementById("cm").value ;
cm = cm/100;
var w = document.getElementById("weight").value;
var bmi = w/(cm*cm);
document.getElementById("bmi").value = bmi;
if(bmi<18.5)